* {
    padding: 0;
    margin: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../Images/hero.png);
    background-position: center;
    background-size: cover;
    position: relative;
}

nav {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

nav img {
    width: 100%;
}

.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.25em;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #5dca23;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

.text-box {
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-box h1 {
    font-size: 62px;
}

.text-box p {
    font-size: 25px;
    margin: 10px 0px 40px;
}

.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.hero-btn:hover {
    border: 1px solid #5dca23;
    background: #5dca23;
    transition: 1s;
}

nav .fas {
    display: none;
}

@media(max-width:900px) {
    .text-box h1 {
        font-size: 20px;
    }

    .nav-links ul li {
        display: block;
    }

    .nav-links {
        position: absolute;
        background: #5dca23;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }

    nav .fas {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul {
        padding: 30px;
    }
}






/* Footer */

footer {
    margin: 0px;
    padding: 10px;
    color: #fff;
    position: relative;
    bottom: 0px;
    width: 98.97%;
    background-color: #111;
}

footer p {
    color: #fff;
}

footer h2 {
    text-align: left;
    color: #fff;
}


.main-content {
    display: flex;
}

.center-box {
    flex: 1;
}

.center-box h2 {
    padding-left: 25px;
}

.center-box .content {
    padding-left: 25px;
    margin: 20px 0 0 0;
}

.center-box .content::before {
    position: absolute;
    content: '';
    top: 40px;
    height: 2px;
    width: 15%;
    background: #1a1a1a;
}

.center-box .content::after {
    position: absolute;
    content: '';
    height: 2px;
    width: 15%;
    background: #6fe72e;
    top: 40px;
}

.center-box .content .text {
    font-size: 1.0625rem;
    font-weight: 500;
    padding-left: 20px;
}

.center-box .content .place {
    margin: 10px 0;
}

.center-box .content .fa {
    font-size: 1.4375rem;
    background-color: #1a1a1a;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    transition: .5s;
}

.center-box .content .fa:hover {
    background-color: #6fe72e;
}

.right-box {
    flex: 1;
}

.right-box .content {
    margin: 20px 0 0 0;
}

.right-box .content::before {
    position: absolute;
    content: '';
    top: 40px;
    height: 2px;
    width: 15%;
    background: #1a1a1a;
}

.right-box .content::after {
    position: absolute;
    content: '';
    height: 2px;
    width: 15%;
    background: #6fe72e;
    top: 40px;
}

.right-box .content form .msg {
    margin-top: 10px;
}

.right-box .content form .text {
    font-size: 1.0625rem;
    margin-bottom: 2px;
    color: #656565;
}

.right-box .content form .btn {
    margin-top: 10px;
}

.right-box .content form .btn button {
    height: 40px;
    width: 90%;
    border: none;
    outline: none;
    background-color: #6fe72e;
    font-size: 1.0625rem;
    font-weight: 500;
    cursor: pointer;
    transition: .5s;
}

.right-box .content form .btn button:hover {
    background: rgb(194, 18, 18);
}

.right-box .content form input,
.right-box form textarea {
    width: 90%;
    font-size: 1.0625rem;
    background: #151515;
    padding-left: 10px;
    border: 1px solid #222222;
}

.right-box .content form input:focus,
.right-box .content form textarea:focus {
    outline-color: #6fe72e;
}

.right-box .content form input {
    height: 35px;
}

.left-box {
    flex: 1;
}

.left-box .content {
    margin: 20px 0 0 0;
}

.left-box .content::before {
    position: absolute;
    content: '';
    top: 40px;
    height: 2px;
    width: 15%;
    background: #1a1a1a;
}

.left-box .content::after {
    position: absolute;
    content: '';
    height: 2px;
    width: 15%;
    background: #6fe72e;
    top: 40px;
}

.left-box .content p {
    font-size: 18px;
    text-align: justify;
}

.left-box .content .social {
    text-align: left;
    margin: 20px 0 0 0;
}

.left-box .content .social a {
    padding: 0 5px;
}

.left-box .content .social a span {
    color: #fff;
    height: 40px;
    width: 40px;
    background-color: #1a1a1a;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    border-radius: 5px;
    transition: .5s;
}

.left-box .content .social a span:hover {
    background-color: #6fe72e;
}

.bottom center {
    padding: 5px;
    font-size: .9375rem;
    background: #151515;
}

.bottom center span {
    color: #656565;
}

.bottom center a {
    color: #f12020;
    text-decoration: none;
}

.bottom center a:hover {
    text-decoration: underline;
}

@media (max-width:900px) {
    footer {
        position: relative;
        bottom: 0;
    }

    .main-content {
        flex-wrap: wrap;
        flex-direction: column;
    }

    .main-content .center-box {
        margin: 5px 0;
    }

    .left-box .content::before {
        position: relative;
        content: '';
        top: 40px;
        height: 2px;
        width: 15%;
        background: #1a1a1a00;
    }

    .left-box .content::after {
        position: relative;
        content: '';
        height: 2px;
        width: 15%;
        background: #5dca2300;
        top: 40px;
    }

    .right-box .content::before {
        position: relative;
        content: '';
        top: 40px;
        height: 2px;
        width: 15%;
        background: #1a1a1a00;
    }

    .right-box .content::after {
        position: relative;
        content: '';
        height: 2px;
        width: 15%;
        background: #5dca2300;
        top: 40px;
    }

    .center-box .content::before {
        position: absolute;
        content: '';
        top: 40px;
        height: 2px;
        width: 15%;
        background: #1a1a1a00;
    }

    .center-box .content::after {
        position: absolute;
        content: '';
        height: 2px;
        width: 15%;
        background: #e4e4e400;
        top: 40px;
    }

    footer h2 {
        text-decoration: underline #6fe72e;
    }

    .center-box h2 {
        padding-left: 0;
    }
}
